home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / PWAEBL10.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1995-04-09  |  1KB  |  44 lines

  1. @echo off
  2. rem
  3. rem -------------------------------------------------------------------------
  4. rem Enhanced Bulletin Lister v1.0 by Drew [PWA]
  5. rem -------------------------------------------------------------------------
  6. rem
  7. if .%1==. goto help
  8. if .%2==. goto help
  9. if not exist %1 goto help
  10.  
  11. mkpcbtxt %1 /i:224  "%%2\STUFF.ME"
  12. mkpcbtxt %1 /i:611  "%%2\STUFF.ME"
  13. goto done
  14.  
  15.  
  16. :help
  17. cls
  18. echo.
  19. echo To install Enhanced Bulletin Lister, use the following syntax:
  20. echo.
  21. echo        install PCBTEXT PPEDIR
  22. echo.
  23. echo        PCBTEXT is the full pathname of your PCBTEXT file.
  24. echo.
  25. echo        PPEDIR is the directory of where EBL is located.
  26. echo.
  27. echo Example:
  28. echo.
  29. echo        install C:\PCB\GEN\PCBTEXT C:\PPE\EBL
  30. echo.
  31. pause
  32.  
  33. :done
  34. echo.
  35. echo Enhanced Bulletin Lister v1.0 by Drew [PWA]
  36. echo.
  37. echo Remember to add EBL.PPE as the "B" command to your CMD.LST!
  38. echo ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  39. echo.
  40. echo Gawd I hate batch files.  T/csh-shell scripts would have been so
  41. echo much nicer. :)   --Drew
  42. echo.
  43.  
  44.